home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / hypercar / xcmd / dispict.sit / DispPICT Stack / card_2939.txt < prev    next >
Text File  |  1987-12-15  |  6KB  |  131 lines

  1. -- card: 2939 from stack: in
  2. -- bmap block id: 2098
  3. -- flags: 0000
  4. -- background id: 2780
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (button)
  9. -- low flags: 00
  10. -- high flags: 8003
  11. -- rect: left=39 top=263 right=287 bottom=201
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: Display GrayView files
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   put FileName("gray") into theFile
  23.   show the message box
  24.   if theFile is not empty then DispPICT thefile,1,1
  25.   put the result into pt
  26.   if pt is not empty then
  27.     if pt contains "ot" then
  28.       put pt into the message box
  29.     else if pt is "0,0" then
  30.       put "You didn't click on the picture" into the message
  31.     else
  32.       put "You last clicked at " into the message box
  33.       put pt after the message box
  34.     end if
  35.   end if
  36. end mouseUp
  37.  
  38.  
  39.  
  40. -- part 3 (field)
  41. -- low flags: 01
  42. -- high flags: 2007
  43. -- rect: left=0 top=10 right=209 bottom=512
  44. -- title width / last selected line: 0
  45. -- icon id / first selected line: 0 / 0
  46. -- text alignment: 0
  47. -- font id: 3
  48. -- text size: 12
  49. -- style flags: 0
  50. -- line height: 16
  51. -- part name: 
  52.  
  53.  
  54. -- part 4 (button)
  55. -- low flags: 00
  56. -- high flags: 8003
  57. -- rect: left=46 top=233 right=253 bottom=192
  58. -- title width / last selected line: 0
  59. -- icon id / first selected line: 0 / 0
  60. -- text alignment: 1
  61. -- font id: 0
  62. -- text size: 12
  63. -- style flags: 0
  64. -- line height: 16
  65. -- part name: Display PICT files
  66. ----- HyperTalk script -----
  67. on mouseUp
  68.   put FileName("PICT") into theFile
  69.   show the message box
  70.   if theFile is not empty then DispPICT thefile,1,1
  71.   put the result into pt
  72.   if pt is not empty then
  73.     if pt contains "ot" then
  74.       put pt into the message box
  75.     else if pt is "0,0" then
  76.       put "You didn't click on the picture" into the message
  77.     else
  78.       put "You last clicked at " into the message box
  79.       put pt after the message box
  80.     end if
  81.   end if
  82. end mouseUp
  83.  
  84.  
  85.  
  86. -- part contents for card part 3
  87. ----- text -----
  88.  
  89. This is a demo of the DispPICT XCMD for displaying color pictures on a Mac II.  The XCMD resource is inside this stack.  Move it to other stacks using ResEdit or a similar utility.  
  90.  
  91. Its syntax is:
  92.      DispPICT fileName,windowing,bestColors,left,top,right,bottom,delay,
  93.                      leftpixel,toppixel
  94.  
  95. (Note: the command must be typed on one line, or be separated into two lines with an option-Return character.)
  96.  
  97. Only the fileName parameter is required.   It must be in quotes, however, and it must be a complete pathname.  DispPICT does not look in the Home stack to determine where to find documents.
  98.  
  99. "fileName" is the file you want to display.  DispPICT can display pictures of type 'PICT', such as those made with MacDraw, Cricket Draw, GrayView, etc. DispPICT can also show any file containing a PICT resource with ID = 0.  These files can be used as StartUpScreens and can be generated by several programs.
  100.  
  101. "windowing" is either 0 or 1.  If 1, DispPICT will show the picture in a moveable, resizeable, scrolling window with a zoom and goaway box.  If windowing = 0, the picture will be displayed in a fixed window with no borders, a sort of "Post-IT" picture.  It will be closed as soon as the user clicks the mouse on top of it.  The default is 0.
  102.  
  103. "bestColors" is either 0 or 1.  If 1, DispPICT will determine which colors are best suited for displaying the picture, and will use those.  This is useful for pictures with specialized color needs.  If 0, DispPICT will use the colors currently available on the Mac.  This is probably adequate for most pictures.  The default is 0.
  104.  
  105. "left" and "top" specify where the top left corner of the window will lie on the screen.  If left = top = 0, DispPICT will center the picture on the whole screen.  This is the default.
  106.  
  107. "right" and "bottom" specify the bottom right corner of the window.  If right = bottom = 0, or if top = bottom = 0, the values are ignored.  This is the default.
  108.  
  109. "delay" specifies the number of seconds you want to the picture to appear on the screen before going away automatically.  With this you can set up StartupScreens for stacks that let you continue after a brief pause.  The user can still close the window normally (via the goaway box if windowing = 1, or by click on the picture if windowing = 0) before "delay" seconds have passed.  If delay = 0 the window will stay up indefinitely.  This is the default.
  110.  
  111. "leftpixel," and "toppixel" allow you to specify what pixel of the actual picture should appear in the top left corner of the window.  If windowing = 1, it will look like the user already scrolled to that point. The default is leftpixel = toppixel = 0;
  112.  
  113. DispPICT also returns a value which HyperCard can access with "the result" function.  It specifies the pixel (in h,v coordinates) in the picture that the user lasted clicked on.  This allows HyperCard scripts to figure out what part of the photo someone chose, sort of like transparent buttons.  If there was no mouse click in the window, the returned value is 0,0.
  114.  
  115. SPECIAL NOTE:  Depending how much memory is available to HyperCard, DispPICT will use two different methods for scrolling when windowing = 1.  If there is surplus silicon, it will use an offscreen pixel map for maximum speed.  What this means to you is that scrolling will be very smooth.  However, if memory is low, DispPICT will not be able to do that trick, and scrolling will be substantially slower.  In particular, you can notice this effect by placing HyperCard in ever smaller MultiFinder partitions.
  116.  
  117. If any error occurs, DispPICT will beep once and return an error message.  The possible errors are "File not found," "Not enough memory," and "PICT could not be opened."
  118.  
  119. Please send any comments or bug reports to one of the following addresses.
  120.  
  121. David Fry
  122. 81 Irving Street
  123. Cambridge, MA   02138
  124.  
  125. CompuServe: 73317,1265
  126. GEnie:D.FRY
  127. ARPANET: fry@huma1.harvard.edu
  128. BITNET: fry@harvma1.bitnet
  129.  
  130.  
  131.